From 9f152e68b2af8fb8de8f2b16029086a3a920db8d Mon Sep 17 00:00:00 2001 From: Andrew Innes Date: Fri, 5 Jan 2001 21:26:40 +0000 Subject: [PATCH] (update_end): Don't check updating_frame; for some reason this can be 0 sometimes, such as after dismissing a popup menu, and isn't necessary given the explicit frame argument. --- src/term.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/term.c b/src/term.c index e7ee0959306..3919f7e59e1 100644 --- a/src/term.c +++ b/src/term.c @@ -507,7 +507,7 @@ void update_end (f) FRAME_PTR f; { - if (! FRAME_TERMCAP_P (updating_frame)) + if (! FRAME_TERMCAP_P (f)) { (*update_end_hook) (f); updating_frame = 0; -- 2.30.2